Prefix key `C-S-c` is echoed as `C-c`
NickName:paula.em.lafon Ask DateTime:2015-11-26T04:22:50

Prefix key `C-S-c` is echoed as `C-c`

When I press C-S-c, the echo area shows only C-c. Things like C-S- selection do work, however.

I'm in Ubuntu 14.10 Utopic Unicorn in case this helps.

Here's the code for the key binding (for multiple cursors) in my .emacs:

;; multiple cursors
(require 'multiple-cursors)
(global-set-key (kbd "C-S-c C-S-c") 'mc/edit-lines)

Copyright Notice:Content Author:「paula.em.lafon」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/33925763/prefix-key-c-s-c-is-echoed-as-c-c

More about “Prefix key `C-S-c` is echoed as `C-c`” related questions

Prefix key `C-S-c` is echoed as `C-c`

When I press C-S-c, the echo area shows only C-c. Things like C-S- selection do work, however. I'm in Ubuntu 14.10 Utopic Unicorn in case this helps. Here's the code for the key binding (for mul...

Show Detail

Check all the commands prefix with C-c

I desire to review all the key-sequences with prefix "C-c" Issue C-c, it prompts and remind that C-h C-n to reference the next page. I want to view them all simultaneously within a single buffer...

Show Detail

Cannot bind C-c key in tmux

Does someone know the reason why in the tmux configuration set-option -g prefix C-a unbind-key C-b bind-key a send-prefix bind-key C-c new-window bind-key C-n next-window bind-key C-p previous-win...

Show Detail

Rebinding C-c to C-c

I'm using Viper, and I want to change its C-c and C-g to the original emacs functions. I can rebind C-g with (define-key viper-vi-global-user-map "C-g" 'keyboard-quit), but how can I rebind C-c, si...

Show Detail

Disabling prefix key binding

In shell mode on emacs, the current key binding for quitting the shell mode ('comint-interrupt-subjob) is "\C-c \C-c", and I want to change it to "\C-c" as in ordinary linux shell. I tried (add-ho...

Show Detail

change Emacs key map (from C-c s to C-\)

I'm trying to change the key maps in Emacs (for use with cscope). Cscope has bindings like "C-c s s", "C-c s g", "C-c s G" ... etc So I'm trying to change the map to C-\ s, C-\ g, C-\ G ... etc ..

Show Detail

Redefine major mode prefix key in Emacs

I've been trying teach myself emacs, and because I am using dvorak, I foolishly rebound C-c to a movement key and got used to it. Now i'm actually starting to do some programming with it, and I loa...

Show Detail

How to remap C-c?

Given that there are so many major modes which define their own maps for this prefix (e.g. latex, org, term), is there a safe way to move these maps somewhere else, and always have the C-c key free...

Show Detail

What function is C-c C-v bound to in org-mode?

I am new to Emacs working through the Org-mode beginning at the basics tutorial. The "Working with todo items" part of the tutorial uses a C-c C-v binding. But C-c C-v is not working on my Spacemac...

Show Detail

undefine empty prefix keys recursively

There is an emacs extension that build keys to very unhandy location and I reassign key bindings in my .emacs file just after loading extension. I've peeked into the extension code, it uses no vari...

Show Detail